home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Applications / nanoInstall 1.0 / nanoInstall / nanoInstall.rsrc / DtFk_137 < prev    next >
Encoding:
Text File  |  1996-05-14  |  543 b   |  22 lines

  1. #pragma once
  2. //
  3. // standardfile is a base class to interface to the standard file package
  4. //
  5. // Note for CodeWarriors: if your compiler complains that it can not
  6. // use a struct as a base class for standardfile you probably are using
  7. // a precompiled header file generated with the C compiler with this C++
  8. // code. You should recompile them with the C++ compiler, and all should
  9. // be fine.
  10. //
  11. class standardfile : public StandardFileReply
  12. {
  13.     public:
  14.         standardfile( short dlogID);
  15.  
  16.         ~standardfile();
  17.  
  18.     protected:
  19.  
  20.         const short    DLOG_ID;
  21. };
  22.